home *** CD-ROM | disk | FTP | other *** search
/ Windows 3-Pak 2 - Disc 2 / Infomagic - Windows 3-Pak Volume 2 (Disc 2 of 3).iso / Chat---IRC / TURBOIRC.ZIP / data1.cab / TurboIRC_Scripts / KWindowDoubleClick.txt < prev    next >
Text File  |  1999-05-05  |  375b  |  21 lines

  1. // Is it a server window ?
  2. if (GetWindowType(GetCurrentWindowName())==1)
  3.  /who * o
  4. endif
  5.  
  6. // Is it a channel window ?
  7. if (GetWindowType(GetCurrentWindowName())==2)
  8.   /banlist
  9.   return
  10. endif
  11.  
  12. // Is it a query window ?
  13. if (GetWindowType(GetCurrentWindowName())==3)
  14.   /whois %GetCurrentWindowName()%
  15.   return
  16. endif
  17.  
  18. // in DCC , this event is NOT processed
  19.  
  20.  
  21.